import { ComponentType, FC } from "react"; type WithErrorBoundaryProps = { skeletonWidth?: string | number; skeletonHeight?: string | number; }; declare const withErrorBoundary:

(WrappedComponent: ComponentType

) => FC

; export default withErrorBoundary;